# Update furniture asset status

Updates the current status of the specified furniture asset within the current account context based on the provided status details.
            
Behavior:
- Validates asset association with the account
- Validates status details from the request body
- Applies status change according to business rules
- Persists updated status information
- Returns updated status details
- Logs the action as an asset status update event

Endpoint: POST /api/v1/furniture/{assetIdentifier}/status

## Path parameters:

  - `assetIdentifier` (string, required)

## Request fields (application/json-patch+json):

  - `statusCode` (string,null)

## Response 200 fields (text/plain):

  - `data` (object)

  - `data.statusId` (string)

  - `data.statusCode` (string,null)

  - `data.statusName` (string,null)

  - `data.statusColor` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


